home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 69 / Cine Live 69.iso / pc / Data / Interface / boucle videos.k < prev    next >
Encoding:
Text File  |  2003-05-07  |  36.9 KB  |  1,210 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000140,$0000002A,$0000024E,$00000383,$00000000,$FFFFFE1F,$00000000,$00000000};
  6.         LayoutWindow is {$0000024A,$00000263,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; Cursor is oEmptyCursor; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     Kind is DrawOpaque; 
  14.     Elements is [
  15.         oFond2,
  16.         oVid_o3,
  17.         oController4
  18.     ];
  19.     Events is [
  20.         cOnscreenEvent
  21.         with Flags is $00000004; 
  22.             Commands is [
  23.                 cTokenCommand
  24.                 with Flags is $00000004; TokenName is "StopMenu"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  25.                 cTokenCommand
  26.                 with Flags is $00000004; TokenName is "StopMusique"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  27.                 cDragCommand
  28.                 with Flags is $00000004; Target is oVid_o3; Mode is DragTo; end,
  29.                 cGrowCommand
  30.                 with Flags is $00000004; Target is oVid_o3; Mode is GrowTo; X is 800; Y is 600; end,
  31.                 cDoCookieCommand
  32.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "0"; end
  33.             ];
  34.         end,
  35.         cKeyboardEvent
  36.         with Value is "+"; 
  37.             Commands is [
  38.                 cSetVolumeCommand
  39.                 with Mode is ExecuteHigher; end
  40.             ];
  41.         end,
  42.         cKeyboardEvent
  43.         with Value is "-"; 
  44.             Commands is [
  45.                 cSetVolumeCommand
  46.                 with Flags is $00000004; Mode is ExecuteLower; end
  47.             ];
  48.         end,
  49.         cKeyboardEvent
  50.         with Value is "m"; 
  51.             Commands is [
  52.                 cRunCommand
  53.                 with Flags is $00000004; Mode is Toggle; Rewind is true; end
  54.             ];
  55.         end
  56.     ];
  57. end;
  58.  
  59. object oFond2 is cImage
  60. with 
  61.     Flags is $00000150; 
  62.     Name is "Fond"; 
  63.     Enabled is false; Cursor is oEmptyCursor; 
  64.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  65.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  66.     Duration is 5; Duration is 5; TimeScale is 1; 
  67.     URL is "../Images/loadingboucle.jpg"; 
  68.     
  69.     
  70.     Events is [
  71.         cOnscreenEvent
  72.         with Flags is $00000004; 
  73.             Commands is [
  74.                 cRunCommand
  75.                 with Flags is $00000004; Target is oTargetSelf; end,
  76.                 cFocusCommand
  77.                 with Flags is $00000004; Target is oTargetSelf; end,
  78.                 cTokenCommand
  79.                 with TokenName is "stop"; Mode is ExecuteTargetUpwards; Target is oRoot1; end
  80.             ];
  81.         end,
  82.         cFinishedEvent
  83.         with Flags is $00000004; 
  84.             Commands is [
  85.                 cShowCommand
  86.                 with Flags is $00000004; Target is oController4; end,
  87.                 cEnableCommand
  88.                 with Flags is $00000004; Target is oController4; end,
  89.                 cFocusCommand
  90.                 with Flags is $00000004; Target is oController4; end,
  91.                 cTokenCommand
  92.                 with Flags is $00000004; TokenName is "EndMovie"; Mode is ExecuteTargetOnly; Target is oController4; end
  93.             ];
  94.         end
  95.     ];
  96. end;
  97.  
  98. object oVid_o3 is cMPEGMovie
  99. with 
  100.     Flags is $00000154; 
  101.     Name is "Vid\$E9o"; 
  102.     Enabled is false; Shown is false; Cursor is oEmptyCursor; 
  103.     
  104.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetLayoutHeight; 
  105.     
  106.     URL is "../Videos/BONUS.MPG"; 
  107.     Events is [
  108.         cFinishedEvent
  109.         with Flags is $00000004; 
  110.             Commands is [
  111.                 cTokenCommand
  112.                 with Flags is $00000004; TokenName is "EndMovie"; Mode is ExecuteTargetOnly; Target is oController4; end
  113.             ];
  114.         end
  115.     ];
  116. end;
  117.  
  118. object oController4 is cBox
  119. with 
  120.     Flags is $00000154; 
  121.     Name is "Controller"; 
  122.     Enabled is false; Shown is false; Cursor is oEmptyCursor; 
  123.     
  124.     Width is 640; Height is 480; 
  125.     
  126.     
  127.     Events is [
  128.         cKeyboardEvent
  129.         with Flags is $00000004; Test is IsSpace; 
  130.             Commands is [
  131.                 cDoCookieCommand
  132.                 with CookieName is "CountLoop"; Mode is ExecuteAdd; Value is "1"; end,
  133.                 cIfCookieCommand
  134.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "1"; 
  135.                     Commands is [
  136.                         cDragCommand
  137.                         with Flags is $00000004; Target is oVid_o3; Mode is DragTo; end,
  138.                         cGrowCommand
  139.                         with Flags is $00000004; Target is oVid_o3; Mode is GrowTo; X is 800; Y is 600; end,
  140.                         cShowCommand
  141.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  142.                         cRunCommand
  143.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  144.                         cEnableCommand
  145.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  146.                         cSwitchURLCommand
  147.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/BONUS.MPG"; end,
  148.                         cShowCommand
  149.                         with Flags is $00000004; Target is oVid_o3; end,
  150.                         cRunCommand
  151.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  152.                         cEnableCommand
  153.                         with Flags is $00000004; Target is oVid_o3; end
  154.                     ];
  155.                 end,
  156.                 cIfCookieCommand
  157.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "2"; 
  158.                     Commands is [
  159.                         cShowCommand
  160.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  161.                         cRunCommand
  162.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  163.                         cEnableCommand
  164.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  165.                         cSwitchURLCommand
  166.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/Pubalcool.mpg"; end,
  167.                         cShowCommand
  168.                         with Flags is $00000004; Target is oVid_o3; end,
  169.                         cRunCommand
  170.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  171.                         cEnableCommand
  172.                         with Flags is $00000004; Target is oVid_o3; end
  173.                     ];
  174.                 end,
  175.                 cIfCookieCommand
  176.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "3"; 
  177.                     Commands is [
  178.                         cShowCommand
  179.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  180.                         cRunCommand
  181.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  182.                         cEnableCommand
  183.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  184.                         cSwitchURLCommand
  185.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/BONUS2.MPG"; end,
  186.                         cShowCommand
  187.                         with Flags is $00000004; Target is oVid_o3; end,
  188.                         cRunCommand
  189.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  190.                         cEnableCommand
  191.                         with Flags is $00000004; Target is oVid_o3; end
  192.                     ];
  193.                 end,
  194.                 cIfCookieCommand
  195.                 with CookieName is "CountLoop"; Value is "4"; 
  196.                     Commands is [
  197.                         cShowCommand
  198.                         with Target is oVid_o3; Mode is Clear; end,
  199.                         cRunCommand
  200.                         with Target is oVid_o3; Mode is Clear; end,
  201.                         cEnableCommand
  202.                         with Target is oVid_o3; Mode is Clear; end,
  203.                         cSwitchURLCommand
  204.                         with Target is oVid_o3; URL is "../Videos/bonus3.mpg"; end,
  205.                         cShowCommand
  206.                         with Target is oVid_o3; end,
  207.                         cRunCommand
  208.                         with Target is oVid_o3; Rewind is true; end,
  209.                         cEnableCommand
  210.                         with Target is oVid_o3; end
  211.                     ];
  212.                 end,
  213.                 cIfCookieCommand
  214.                 with CookieName is "CountLoop"; Value is "5"; 
  215.                     Commands is [
  216.                         cShowCommand
  217.                         with Target is oVid_o3; Mode is Clear; end,
  218.                         cRunCommand
  219.                         with Target is oVid_o3; Mode is Clear; end,
  220.                         cEnableCommand
  221.                         with Target is oVid_o3; Mode is Clear; end,
  222.                         cSwitchURLCommand
  223.                         with Target is oVid_o3; URL is "../Videos/A1.MPG"; end,
  224.                         cShowCommand
  225.                         with Target is oVid_o3; end,
  226.                         cRunCommand
  227.                         with Target is oVid_o3; Rewind is true; end,
  228.                         cEnableCommand
  229.                         with Target is oVid_o3; end
  230.                     ];
  231.                 end,
  232.                 cIfCookieCommand
  233.                 with CookieName is "CountLoop"; Value is "6"; 
  234.                     Commands is [
  235.                         cShowCommand
  236.                         with Target is oVid_o3; Mode is Clear; end,
  237.                         cRunCommand
  238.                         with Target is oVid_o3; Mode is Clear; end,
  239.                         cEnableCommand
  240.                         with Target is oVid_o3; Mode is Clear; end,
  241.                         cSwitchURLCommand
  242.                         with Target is oVid_o3; URL is "../Videos/A2.MPG"; end,
  243.                         cShowCommand
  244.                         with Target is oVid_o3; end,
  245.                         cRunCommand
  246.                         with Target is oVid_o3; Rewind is true; end,
  247.                         cEnableCommand
  248.                         with Target is oVid_o3; end
  249.                     ];
  250.                 end,
  251.                 cIfCookieCommand
  252.                 with CookieName is "CountLoop"; Value is "7"; 
  253.                     Commands is [
  254.                         cShowCommand
  255.                         with Target is oVid_o3; Mode is Clear; end,
  256.                         cRunCommand
  257.                         with Target is oVid_o3; Mode is Clear; end,
  258.                         cEnableCommand
  259.                         with Target is oVid_o3; Mode is Clear; end,
  260.                         cSwitchURLCommand
  261.                         with Target is oVid_o3; URL is "../Videos/A3.MPG"; end,
  262.                         cShowCommand
  263.                         with Target is oVid_o3; end,
  264.                         cRunCommand
  265.                         with Target is oVid_o3; Rewind is true; end,
  266.                         cEnableCommand
  267.                         with Target is oVid_o3; end
  268.                     ];
  269.                 end,
  270.                 cIfCookieCommand
  271.                 with CookieName is "CountLoop"; Value is "8"; 
  272.                     Commands is [
  273.                         cShowCommand
  274.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  275.                         cRunCommand
  276.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  277.                         cEnableCommand
  278.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  279.                         cSwitchURLCommand
  280.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/A4.MPG"; end,
  281.                         cShowCommand
  282.                         with Flags is $00000004; Target is oVid_o3; end,
  283.                         cRunCommand
  284.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  285.                         cEnableCommand
  286.                         with Flags is $00000004; Target is oVid_o3; end
  287.                     ];
  288.                 end,
  289.                 cIfCookieCommand
  290.                 with CookieName is "CountLoop"; Value is "9"; 
  291.                     Commands is [
  292.                         cShowCommand
  293.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  294.                         cRunCommand
  295.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  296.                         cEnableCommand
  297.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  298.                         cSwitchURLCommand
  299.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/a5.mpg"; end,
  300.                         cShowCommand
  301.                         with Flags is $00000004; Target is oVid_o3; end,
  302.                         cRunCommand
  303.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  304.                         cEnableCommand
  305.                         with Flags is $00000004; Target is oVid_o3; end
  306.                     ];
  307.                 end,
  308.                 cIfCookieCommand
  309.                 with CookieName is "CountLoop"; Value is "10"; 
  310.                     Commands is [
  311.                         cShowCommand
  312.                         with Target is oVid_o3; Mode is Clear; end,
  313.                         cRunCommand
  314.                         with Target is oVid_o3; Mode is Clear; end,
  315.                         cEnableCommand
  316.                         with Target is oVid_o3; Mode is Clear; end,
  317.                         cSwitchURLCommand
  318.                         with Target is oVid_o3; URL is "../Videos/s1.mpg"; end,
  319.                         cShowCommand
  320.                         with Target is oVid_o3; end,
  321.                         cRunCommand
  322.                         with Target is oVid_o3; Rewind is true; end,
  323.                         cEnableCommand
  324.                         with Target is oVid_o3; end
  325.                     ];
  326.                 end,
  327.                 cIfCookieCommand
  328.                 with CookieName is "CountLoop"; Value is "11"; 
  329.                     Commands is [
  330.                         cShowCommand
  331.                         with Target is oVid_o3; Mode is Clear; end,
  332.                         cRunCommand
  333.                         with Target is oVid_o3; Mode is Clear; end,
  334.                         cEnableCommand
  335.                         with Target is oVid_o3; Mode is Clear; end,
  336.                         cSwitchURLCommand
  337.                         with Target is oVid_o3; URL is "../Videos/s2.mpg"; end,
  338.                         cShowCommand
  339.                         with Target is oVid_o3; end,
  340.                         cRunCommand
  341.                         with Target is oVid_o3; Rewind is true; end,
  342.                         cEnableCommand
  343.                         with Target is oVid_o3; end
  344.                     ];
  345.                 end,
  346.                 cIfCookieCommand
  347.                 with CookieName is "CountLoop"; Value is "12"; 
  348.                     Commands is [
  349.                         cShowCommand
  350.                         with Target is oVid_o3; Mode is Clear; end,
  351.                         cRunCommand
  352.                         with Target is oVid_o3; Mode is Clear; end,
  353.                         cEnableCommand
  354.                         with Target is oVid_o3; Mode is Clear; end,
  355.                         cSwitchURLCommand
  356.                         with Target is oVid_o3; URL is "../Videos/s3.mpg"; end,
  357.                         cShowCommand
  358.                         with Target is oVid_o3; end,
  359.                         cRunCommand
  360.                         with Target is oVid_o3; Rewind is true; end,
  361.                         cEnableCommand
  362.                         with Target is oVid_o3; end
  363.                     ];
  364.                 end,
  365.                 cIfCookieCommand
  366.                 with CookieName is "CountLoop"; Value is "13"; 
  367.                     Commands is [
  368.                         cShowCommand
  369.                         with Target is oVid_o3; Mode is Clear; end,
  370.                         cRunCommand
  371.                         with Target is oVid_o3; Mode is Clear; end,
  372.                         cEnableCommand
  373.                         with Target is oVid_o3; Mode is Clear; end,
  374.                         cSwitchURLCommand
  375.                         with Target is oVid_o3; URL is "../Videos/s4.mpg"; end,
  376.                         cShowCommand
  377.                         with Target is oVid_o3; end,
  378.                         cRunCommand
  379.                         with Target is oVid_o3; Rewind is true; end,
  380.                         cEnableCommand
  381.                         with Target is oVid_o3; end
  382.                     ];
  383.                 end,
  384.                 cIfCookieCommand
  385.                 with CookieName is "CountLoop"; Value is "14"; 
  386.                     Commands is [
  387.                         cShowCommand
  388.                         with Target is oVid_o3; Mode is Clear; end,
  389.                         cRunCommand
  390.                         with Target is oVid_o3; Mode is Clear; end,
  391.                         cEnableCommand
  392.                         with Target is oVid_o3; Mode is Clear; end,
  393.                         cSwitchURLCommand
  394.                         with Target is oVid_o3; URL is "../Videos/s5.mpg"; end,
  395.                         cShowCommand
  396.                         with Target is oVid_o3; end,
  397.                         cRunCommand
  398.                         with Target is oVid_o3; Rewind is true; end,
  399.                         cEnableCommand
  400.                         with Target is oVid_o3; end
  401.                     ];
  402.                 end,
  403.                 cIfCookieCommand
  404.                 with CookieName is "CountLoop"; Value is "15"; 
  405.                     Commands is [
  406.                         cShowCommand
  407.                         with Target is oVid_o3; Mode is Clear; end,
  408.                         cRunCommand
  409.                         with Target is oVid_o3; Mode is Clear; end,
  410.                         cEnableCommand
  411.                         with Target is oVid_o3; Mode is Clear; end,
  412.                         cSwitchURLCommand
  413.                         with Target is oVid_o3; URL is "../Videos/s6.mpg"; end,
  414.                         cShowCommand
  415.                         with Target is oVid_o3; end,
  416.                         cRunCommand
  417.                         with Target is oVid_o3; Rewind is true; end,
  418.                         cEnableCommand
  419.                         with Target is oVid_o3; end
  420.                     ];
  421.                 end,
  422.                 cIfCookieCommand
  423.                 with CookieName is "CountLoop"; Value is "16"; 
  424.                     Commands is [
  425.                         cEnableCommand
  426.                         with Target is oVid_o3; Mode is Clear; end,
  427.                         cShowCommand
  428.                         with Target is oVid_o3; Mode is Clear; end,
  429.                         cRunCommand
  430.                         with Target is oVid_o3; Mode is Clear; end,
  431.                         cSwitchURLCommand
  432.                         with Target is oVid_o3; URL is "../Videos/s7.mpg"; end,
  433.                         cEnableCommand
  434.                         with Target is oVid_o3; end,
  435.                         cShowCommand
  436.                         with Target is oVid_o3; end,
  437.                         cRunCommand
  438.                         with Target is oVid_o3; Rewind is true; end
  439.                     ];
  440.                 end,
  441.                 cIfCookieCommand
  442.                 with CookieName is "CountLoop"; Value is "17"; 
  443.                     Commands is [
  444.                         cShowCommand
  445.                         with Target is oVid_o3; Mode is Clear; end,
  446.                         cRunCommand
  447.                         with Target is oVid_o3; Mode is Clear; end,
  448.                         cEnableCommand
  449.                         with Target is oVid_o3; Mode is Clear; end,
  450.                         cSwitchURLCommand
  451.                         with Target is oVid_o3; URL is "../Videos/s8.mpg"; end,
  452.                         cShowCommand
  453.                         with Target is oVid_o3; end,
  454.                         cRunCommand
  455.                         with Target is oVid_o3; Rewind is true; end,
  456.                         cEnableCommand
  457.                         with Target is oVid_o3; end
  458.                     ];
  459.                 end,
  460.                 cIfCookieCommand
  461.                 with CookieName is "CountLoop"; Value is "18"; 
  462.                     Commands is [
  463.                         cShowCommand
  464.                         with Target is oVid_o3; Mode is Clear; end,
  465.                         cRunCommand
  466.                         with Target is oVid_o3; Mode is Clear; end,
  467.                         cEnableCommand
  468.                         with Target is oVid_o3; Mode is Clear; end,
  469.                         cDragCommand
  470.                         with Target is oVid_o3; Mode is DragTo; Y is 76; end,
  471.                         cGrowCommand
  472.                         with Target is oVid_o3; Mode is GrowTo; X is 800; Y is 450; end,
  473.                         cSwitchURLCommand
  474.                         with Target is oVid_o3; URL is "../Videos/S9.MPG"; end,
  475.                         cShowCommand
  476.                         with Target is oVid_o3; end,
  477.                         cRunCommand
  478.                         with Target is oVid_o3; Rewind is true; end,
  479.                         cEnableCommand
  480.                         with Target is oVid_o3; end
  481.                     ];
  482.                 end,
  483.                 cIfCookieCommand
  484.                 with CookieName is "CountLoop"; Value is "19"; 
  485.                     Commands is [
  486.                         cDragCommand
  487.                         with Target is oVid_o3; Mode is DragTo; end,
  488.                         cGrowCommand
  489.                         with Target is oVid_o3; Mode is GrowTo; X is 800; Y is 600; end,
  490.                         cShowCommand
  491.                         with Target is oVid_o3; Mode is Clear; end,
  492.                         cRunCommand
  493.                         with Target is oVid_o3; Mode is Clear; end,
  494.                         cEnableCommand
  495.                         with Target is oVid_o3; Mode is Clear; end,
  496.                         cSwitchURLCommand
  497.                         with Target is oVid_o3; URL is "../Videos/S10.MPG"; end,
  498.                         cShowCommand
  499.                         with Target is oVid_o3; end,
  500.                         cRunCommand
  501.                         with Target is oVid_o3; Rewind is true; end,
  502.                         cEnableCommand
  503.                         with Target is oVid_o3; end
  504.                     ];
  505.                 end,
  506.                 cIfCookieCommand
  507.                 with CookieName is "CountLoop"; Value is "20"; 
  508.                     Commands is [
  509.                         cShowCommand
  510.                         with Target is oVid_o3; Mode is Clear; end,
  511.                         cRunCommand
  512.                         with Target is oVid_o3; Mode is Clear; end,
  513.                         cEnableCommand
  514.                         with Target is oVid_o3; Mode is Clear; end,
  515.                         cSwitchURLCommand
  516.                         with Target is oVid_o3; URL is "../Videos/s11.mpg"; end,
  517.                         cShowCommand
  518.                         with Target is oVid_o3; end,
  519.                         cRunCommand
  520.                         with Target is oVid_o3; Rewind is true; end,
  521.                         cEnableCommand
  522.                         with Target is oVid_o3; end
  523.                     ];
  524.                 end,
  525.                 cIfCookieCommand
  526.                 with CookieName is "CountLoop"; Value is "21"; 
  527.                     Commands is [
  528.                         cShowCommand
  529.                         with Target is oVid_o3; Mode is Clear; end,
  530.                         cRunCommand
  531.                         with Target is oVid_o3; Mode is Clear; end,
  532.                         cEnableCommand
  533.                         with Target is oVid_o3; Mode is Clear; end,
  534.                         cSwitchURLCommand
  535.                         with Target is oVid_o3; URL is "../Videos/s12.mpg"; end,
  536.                         cShowCommand
  537.                         with Target is oVid_o3; end,
  538.                         cRunCommand
  539.                         with Target is oVid_o3; Rewind is true; end,
  540.                         cEnableCommand
  541.                         with Target is oVid_o3; end
  542.                     ];
  543.                 end,
  544.                 cIfCookieCommand
  545.                 with CookieName is "CountLoop"; Value is "22"; 
  546.                     Commands is [
  547.                         cShowCommand
  548.                         with Target is oVid_o3; Mode is Clear; end,
  549.                         cRunCommand
  550.                         with Target is oVid_o3; Mode is Clear; end,
  551.                         cEnableCommand
  552.                         with Target is oVid_o3; Mode is Clear; end,
  553.                         cSwitchURLCommand
  554.                         with Target is oVid_o3; URL is "../Videos/R1.MPG"; end,
  555.                         cShowCommand
  556.                         with Target is oVid_o3; end,
  557.                         cRunCommand
  558.                         with Target is oVid_o3; Rewind is true; end,
  559.                         cEnableCommand
  560.                         with Target is oVid_o3; end
  561.                     ];
  562.                 end,
  563.                 cIfCookieCommand
  564.                 with CookieName is "CountLoop"; Value is "23"; 
  565.                     Commands is [
  566.                         cShowCommand
  567.                         with Target is oVid_o3; Mode is Clear; end,
  568.                         cRunCommand
  569.                         with Target is oVid_o3; Mode is Clear; end,
  570.                         cEnableCommand
  571.                         with Target is oVid_o3; Mode is Clear; end,
  572.                         cSwitchURLCommand
  573.                         with Target is oVid_o3; URL is "../Videos/R2.MPG"; end,
  574.                         cShowCommand
  575.                         with Target is oVid_o3; end,
  576.                         cRunCommand
  577.                         with Target is oVid_o3; Rewind is true; end,
  578.                         cEnableCommand
  579.                         with Target is oVid_o3; end
  580.                     ];
  581.                 end,
  582.                 cIfCookieCommand
  583.                 with CookieName is "CountLoop"; Value is "24"; 
  584.                     Commands is [
  585.                         cShowCommand
  586.                         with Target is oVid_o3; Mode is Clear; end,
  587.                         cRunCommand
  588.                         with Target is oVid_o3; Mode is Clear; end,
  589.                         cEnableCommand
  590.                         with Target is oVid_o3; Mode is Clear; end,
  591.                         cSwitchURLCommand
  592.                         with Target is oVid_o3; URL is "../Videos/R3.MPG"; end,
  593.                         cShowCommand
  594.                         with Target is oVid_o3; end,
  595.                         cRunCommand
  596.                         with Target is oVid_o3; Rewind is true; end,
  597.                         cEnableCommand
  598.                         with Target is oVid_o3; end
  599.                     ];
  600.                 end,
  601.                 cIfCookieCommand
  602.                 with CookieName is "CountLoop"; Value is "25"; 
  603.                     Commands is [
  604.                         cShowCommand
  605.                         with Target is oVid_o3; Mode is Clear; end,
  606.                         cRunCommand
  607.                         with Target is oVid_o3; Mode is Clear; end,
  608.                         cEnableCommand
  609.                         with Target is oVid_o3; Mode is Clear; end,
  610.                         cSwitchURLCommand
  611.                         with Target is oVid_o3; URL is "../Videos/R4.MPG"; end,
  612.                         cShowCommand
  613.                         with Target is oVid_o3; end,
  614.                         cRunCommand
  615.                         with Target is oVid_o3; Rewind is true; end,
  616.                         cEnableCommand
  617.                         with Target is oVid_o3; end
  618.                     ];
  619.                 end,
  620.                 cIfCookieCommand
  621.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "26"; 
  622.                     Commands is [
  623.                         cShowCommand
  624.                         with Target is oVid_o3; Mode is Clear; end,
  625.                         cRunCommand
  626.                         with Target is oVid_o3; Mode is Clear; end,
  627.                         cEnableCommand
  628.                         with Target is oVid_o3; Mode is Clear; end,
  629.                         cSwitchURLCommand
  630.                         with Target is oVid_o3; URL is "../Videos/v1.mpg"; end,
  631.                         cShowCommand
  632.                         with Target is oVid_o3; end,
  633.                         cRunCommand
  634.                         with Target is oVid_o3; Rewind is true; end,
  635.                         cEnableCommand
  636.                         with Target is oVid_o3; end
  637.                     ];
  638.                 end,
  639.                 cIfCookieCommand
  640.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "27"; 
  641.                     Commands is [
  642.                         cShowCommand
  643.                         with Target is oVid_o3; Mode is Clear; end,
  644.                         cRunCommand
  645.                         with Target is oVid_o3; Mode is Clear; end,
  646.                         cDragCommand
  647.                         with Flags is $00000004; Target is oVid_o3; Mode is DragTo; Y is 76; end,
  648.                         cGrowCommand
  649.                         with Flags is $00000004; Target is oVid_o3; Mode is GrowTo; X is 800; Y is 450; end,
  650.                         cSwitchURLCommand
  651.                         with Target is oVid_o3; URL is "../Videos/V2.MPG"; end,
  652.                         cShowCommand
  653.                         with Target is oVid_o3; end,
  654.                         cRunCommand
  655.                         with Target is oVid_o3; Rewind is true; end,
  656.                         cEnableCommand
  657.                         with Target is oVid_o3; end,
  658.                         cDoCookieCommand
  659.                         with CookieName is "CountLoop"; Value is "0"; end
  660.                     ];
  661.                 end
  662.             ];
  663.         end,
  664.         cTokenEvent
  665.         with Flags is $00000004; MessageData is "EndMovie"; 
  666.             Commands is [
  667.                 cDoCookieCommand
  668.                 with CookieName is "CountLoop"; Mode is ExecuteAdd; Value is "1"; end,
  669.                 cDragCommand
  670.                 with Target is oVid_o3; Mode is DragTo; end,
  671.                 cIfCookieCommand
  672.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "1"; 
  673.                     Commands is [
  674.                         cShowCommand
  675.                         with Target is oVid_o3; Mode is Clear; end,
  676.                         cRunCommand
  677.                         with Target is oVid_o3; Mode is Clear; end,
  678.                         cEnableCommand
  679.                         with Target is oVid_o3; Mode is Clear; end,
  680.                         cSwitchURLCommand
  681.                         with Target is oVid_o3; URL is "../Videos/BONUS.MPG"; end,
  682.                         cShowCommand
  683.                         with Target is oVid_o3; end,
  684.                         cRunCommand
  685.                         with Target is oVid_o3; Rewind is true; end,
  686.                         cEnableCommand
  687.                         with Target is oVid_o3; end
  688.                     ];
  689.                 end,
  690.                 cIfCookieCommand
  691.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "2"; 
  692.                     Commands is [
  693.                         cShowCommand
  694.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  695.                         cRunCommand
  696.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  697.                         cEnableCommand
  698.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  699.                         cSwitchURLCommand
  700.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/Pubalcool.mpg"; end,
  701.                         cShowCommand
  702.                         with Flags is $00000004; Target is oVid_o3; end,
  703.                         cRunCommand
  704.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  705.                         cEnableCommand
  706.                         with Flags is $00000004; Target is oVid_o3; end
  707.                     ];
  708.                 end,
  709.                 cIfCookieCommand
  710.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "3"; 
  711.                     Commands is [
  712.                         cShowCommand
  713.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  714.                         cRunCommand
  715.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  716.                         cEnableCommand
  717.                         with Flags is $00000004; Target is oVid_o3; Mode is Clear; end,
  718.                         cSwitchURLCommand
  719.                         with Flags is $00000004; Target is oVid_o3; URL is "../Videos/BONUS2.MPG"; end,
  720.                         cShowCommand
  721.                         with Flags is $00000004; Target is oVid_o3; end,
  722.                         cRunCommand
  723.                         with Flags is $00000004; Target is oVid_o3; Rewind is true; end,
  724.                         cEnableCommand
  725.                         with Flags is $00000004; Target is oVid_o3; end
  726.                     ];
  727.                 end,
  728.                 cIfCookieCommand
  729.                 with CookieName is "CountLoop"; Value is "4"; 
  730.                     Commands is [
  731.                         cShowCommand
  732.                         with Target is oVid_o3; Mode is Clear; end,
  733.                         cRunCommand
  734.                         with Target is oVid_o3; Mode is Clear; end,
  735.                         cEnableCommand
  736.                         with Target is oVid_o3; Mode is Clear; end,
  737.                         cSwitchURLCommand
  738.                         with Target is oVid_o3; URL is "../Videos/bonus3.mpg"; end,
  739.                         cShowCommand
  740.                         with Target is oVid_o3; end,
  741.                         cRunCommand
  742.                         with Target is oVid_o3; Rewind is true; end,
  743.                         cEnableCommand
  744.                         with Target is oVid_o3; end
  745.                     ];
  746.                 end,
  747.                 cIfCookieCommand
  748.                 with CookieName is "CountLoop"; Value is "5"; 
  749.                     Commands is [
  750.                         cShowCommand
  751.                         with Target is oVid_o3; Mode is Clear; end,
  752.                         cRunCommand
  753.                         with Target is oVid_o3; Mode is Clear; end,
  754.                         cEnableCommand
  755.                         with Target is oVid_o3; Mode is Clear; end,
  756.                         cSwitchURLCommand
  757.                         with Target is oVid_o3; URL is "../Videos/A1.MPG"; end,
  758.                         cShowCommand
  759.                         with Target is oVid_o3; end,
  760.                         cRunCommand
  761.                         with Target is oVid_o3; Rewind is true; end,
  762.                         cEnableCommand
  763.                         with Target is oVid_o3; end
  764.                     ];
  765.                 end,
  766.                 cIfCookieCommand
  767.                 with CookieName is "CountLoop"; Value is "6"; 
  768.                     Commands is [
  769.                         cShowCommand
  770.                         with Target is oVid_o3; Mode is Clear; end,
  771.                         cRunCommand
  772.                         with Target is oVid_o3; Mode is Clear; end,
  773.                         cEnableCommand
  774.                         with Target is oVid_o3; Mode is Clear; end,
  775.                         cSwitchURLCommand
  776.                         with Target is oVid_o3; URL is "../Videos/A2.MPG"; end,
  777.                         cShowCommand
  778.                         with Target is oVid_o3; end,
  779.                         cRunCommand
  780.                         with Target is oVid_o3; Rewind is true; end,
  781.                         cEnableCommand
  782.                         with Target is oVid_o3; end
  783.                     ];
  784.                 end,
  785.                 cIfCookieCommand
  786.                 with CookieName is "CountLoop"; Value is "7"; 
  787.                     Commands is [
  788.                         cShowCommand
  789.                         with Target is oVid_o3; Mode is Clear; end,
  790.                         cRunCommand
  791.                         with Target is oVid_o3; Mode is Clear; end,
  792.                         cEnableCommand
  793.                         with Target is oVid_o3; Mode is Clear; end,
  794.                         cSwitchURLCommand
  795.                         with Target is oVid_o3; URL is "../Videos/A3.MPG"; end,
  796.                         cShowCommand
  797.                         with Target is oVid_o3; end,
  798.                         cRunCommand
  799.                         with Target is oVid_o3; Rewind is true; end,
  800.                         cEnableCommand
  801.                         with Target is oVid_o3; end
  802.                     ];
  803.                 end,
  804.                 cIfCookieCommand
  805.                 with CookieName is "CountLoop"; Value is "8"; 
  806.                     Commands is [
  807.                         cShowCommand
  808.                         with Target is oVid_o3; Mode is Clear; end,
  809.                         cRunCommand
  810.                         with Target is oVid_o3; Mode is Clear; end,
  811.                         cEnableCommand
  812.                         with Target is oVid_o3; Mode is Clear; end,
  813.                         cSwitchURLCommand
  814.                         with Target is oVid_o3; URL is "../Videos/A4.MPG"; end,
  815.                         cShowCommand
  816.                         with Target is oVid_o3; end,
  817.                         cRunCommand
  818.                         with Target is oVid_o3; Rewind is true; end,
  819.                         cEnableCommand
  820.                         with Target is oVid_o3; end
  821.                     ];
  822.                 end,
  823.                 cIfCookieCommand
  824.                 with CookieName is "CountLoop"; Value is "9"; 
  825.                     Commands is [
  826.                         cShowCommand
  827.                         with Target is oVid_o3; Mode is Clear; end,
  828.                         cRunCommand
  829.                         with Target is oVid_o3; Mode is Clear; end,
  830.                         cEnableCommand
  831.                         with Target is oVid_o3; Mode is Clear; end,
  832.                         cSwitchURLCommand
  833.                         with Target is oVid_o3; URL is "../Videos/a5.mpg"; end,
  834.                         cShowCommand
  835.                         with Target is oVid_o3; end,
  836.                         cRunCommand
  837.                         with Target is oVid_o3; Rewind is true; end,
  838.                         cEnableCommand
  839.                         with Target is oVid_o3; end
  840.                     ];
  841.                 end,
  842.                 cIfCookieCommand
  843.                 with CookieName is "CountLoop"; Value is "10"; 
  844.                     Commands is [
  845.                         cShowCommand
  846.                         with Target is oVid_o3; Mode is Clear; end,
  847.                         cRunCommand
  848.                         with Target is oVid_o3; Mode is Clear; end,
  849.                         cEnableCommand
  850.                         with Target is oVid_o3; Mode is Clear; end,
  851.                         cSwitchURLCommand
  852.                         with Target is oVid_o3; URL is "../Videos/s1.mpg"; end,
  853.                         cShowCommand
  854.                         with Target is oVid_o3; end,
  855.                         cRunCommand
  856.                         with Target is oVid_o3; Rewind is true; end,
  857.                         cEnableCommand
  858.                         with Target is oVid_o3; end
  859.                     ];
  860.                 end,
  861.                 cIfCookieCommand
  862.                 with CookieName is "CountLoop"; Value is "11"; 
  863.                     Commands is [
  864.                         cShowCommand
  865.                         with Target is oVid_o3; Mode is Clear; end,
  866.                         cRunCommand
  867.                         with Target is oVid_o3; Mode is Clear; end,
  868.                         cEnableCommand
  869.                         with Target is oVid_o3; Mode is Clear; end,
  870.                         cSwitchURLCommand
  871.                         with Target is oVid_o3; URL is "../Videos/s2.mpg"; end,
  872.                         cShowCommand
  873.                         with Target is oVid_o3; end,
  874.                         cRunCommand
  875.                         with Target is oVid_o3; Rewind is true; end,
  876.                         cEnableCommand
  877.                         with Target is oVid_o3; end
  878.                     ];
  879.                 end,
  880.                 cIfCookieCommand
  881.                 with CookieName is "CountLoop"; Value is "12"; 
  882.                     Commands is [
  883.                         cShowCommand
  884.                         with Target is oVid_o3; Mode is Clear; end,
  885.                         cRunCommand
  886.                         with Target is oVid_o3; Mode is Clear; end,
  887.                         cEnableCommand
  888.                         with Target is oVid_o3; Mode is Clear; end,
  889.                         cSwitchURLCommand
  890.                         with Target is oVid_o3; URL is "../Videos/s3.mpg"; end,
  891.                         cShowCommand
  892.                         with Target is oVid_o3; end,
  893.                         cRunCommand
  894.                         with Target is oVid_o3; Rewind is true; end,
  895.                         cEnableCommand
  896.                         with Target is oVid_o3; end
  897.                     ];
  898.                 end,
  899.                 cIfCookieCommand
  900.                 with CookieName is "CountLoop"; Value is "13"; 
  901.                     Commands is [
  902.                         cShowCommand
  903.                         with Target is oVid_o3; Mode is Clear; end,
  904.                         cRunCommand
  905.                         with Target is oVid_o3; Mode is Clear; end,
  906.                         cEnableCommand
  907.                         with Target is oVid_o3; Mode is Clear; end,
  908.                         cSwitchURLCommand
  909.                         with Target is oVid_o3; URL is "../Videos/s4.mpg"; end,
  910.                         cShowCommand
  911.                         with Target is oVid_o3; end,
  912.                         cRunCommand
  913.                         with Target is oVid_o3; Rewind is true; end,
  914.                         cEnableCommand
  915.                         with Target is oVid_o3; end
  916.                     ];
  917.                 end,
  918.                 cIfCookieCommand
  919.                 with CookieName is "CountLoop"; Value is "14"; 
  920.                     Commands is [
  921.                         cShowCommand
  922.                         with Target is oVid_o3; Mode is Clear; end,
  923.                         cRunCommand
  924.                         with Target is oVid_o3; Mode is Clear; end,
  925.                         cEnableCommand
  926.                         with Target is oVid_o3; Mode is Clear; end,
  927.                         cSwitchURLCommand
  928.                         with Target is oVid_o3; URL is "../Videos/s5.mpg"; end,
  929.                         cShowCommand
  930.                         with Target is oVid_o3; end,
  931.                         cRunCommand
  932.                         with Target is oVid_o3; Rewind is true; end,
  933.                         cEnableCommand
  934.                         with Target is oVid_o3; end
  935.                     ];
  936.                 end,
  937.                 cIfCookieCommand
  938.                 with CookieName is "CountLoop"; Value is "15"; 
  939.                     Commands is [
  940.                         cShowCommand
  941.                         with Target is oVid_o3; Mode is Clear; end,
  942.                         cRunCommand
  943.                         with Target is oVid_o3; Mode is Clear; end,
  944.                         cEnableCommand
  945.                         with Target is oVid_o3; Mode is Clear; end,
  946.                         cSwitchURLCommand
  947.                         with Target is oVid_o3; URL is "../Videos/s6.mpg"; end,
  948.                         cShowCommand
  949.                         with Target is oVid_o3; end,
  950.                         cRunCommand
  951.                         with Target is oVid_o3; Rewind is true; end,
  952.                         cEnableCommand
  953.                         with Target is oVid_o3; end
  954.                     ];
  955.                 end,
  956.                 cIfCookieCommand
  957.                 with CookieName is "CountLoop"; Value is "16"; 
  958.                     Commands is [
  959.                         cShowCommand
  960.                         with Target is oVid_o3; Mode is Clear; end,
  961.                         cRunCommand
  962.                         with Target is oVid_o3; Mode is Clear; end,
  963.                         cEnableCommand
  964.                         with Target is oVid_o3; Mode is Clear; end,
  965.                         cSwitchURLCommand
  966.                         with Target is oVid_o3; URL is "../Videos/s7.mpg"; end,
  967.                         cShowCommand
  968.                         with Target is oVid_o3; end,
  969.                         cRunCommand
  970.                         with Target is oVid_o3; Rewind is true; end,
  971.                         cEnableCommand
  972.                         with Target is oVid_o3; end
  973.                     ];
  974.                 end,
  975.                 cIfCookieCommand
  976.                 with CookieName is "CountLoop"; Value is "17"; 
  977.                     Commands is [
  978.                         cShowCommand
  979.                         with Target is oVid_o3; Mode is Clear; end,
  980.                         cRunCommand
  981.                         with Target is oVid_o3; Mode is Clear; end,
  982.                         cEnableCommand
  983.                         with Target is oVid_o3; Mode is Clear; end,
  984.                         cSwitchURLCommand
  985.                         with Target is oVid_o3; URL is "../Videos/s8.mpg"; end,
  986.                         cShowCommand
  987.                         with Target is oVid_o3; end,
  988.                         cRunCommand
  989.                         with Target is oVid_o3; Rewind is true; end,
  990.                         cEnableCommand
  991.                         with Target is oVid_o3; end
  992.                     ];
  993.                 end,
  994.                 cIfCookieCommand
  995.                 with CookieName is "CountLoop"; Value is "18"; 
  996.                     Commands is [
  997.                         cShowCommand
  998.                         with Target is oVid_o3; Mode is Clear; end,
  999.                         cRunCommand
  1000.                         with Target is oVid_o3; Mode is Clear; end,
  1001.                         cEnableCommand
  1002.                         with Target is oVid_o3; Mode is Clear; end,
  1003.                         cSwitchURLCommand
  1004.                         with Target is oVid_o3; URL is "../Videos/S9.MPG"; end,
  1005.                         cShowCommand
  1006.                         with Target is oVid_o3; end,
  1007.                         cRunCommand
  1008.                         with Target is oVid_o3; Rewind is true; end,
  1009.                         cEnableCommand
  1010.                         with Target is oVid_o3; end
  1011.                     ];
  1012.                 end,
  1013.                 cIfCookieCommand
  1014.                 with CookieName is "CountLoop"; Value is "19"; 
  1015.                     Commands is [
  1016.                         cShowCommand
  1017.                         with Target is oVid_o3; Mode is Clear; end,
  1018.                         cRunCommand
  1019.                         with Target is oVid_o3; Mode is Clear; end,
  1020.                         cEnableCommand
  1021.                         with Target is oVid_o3; Mode is Clear; end,
  1022.                         cSwitchURLCommand
  1023.                         with Target is oVid_o3; URL is "../Videos/S10.MPG"; end,
  1024.                         cShowCommand
  1025.                         with Target is oVid_o3; end,
  1026.                         cRunCommand
  1027.                         with Target is oVid_o3; Rewind is true; end,
  1028.                         cEnableCommand
  1029.                         with Target is oVid_o3; end
  1030.                     ];
  1031.                 end,
  1032.                 cIfCookieCommand
  1033.                 with CookieName is "CountLoop"; Value is "20"; 
  1034.                     Commands is [
  1035.                         cShowCommand
  1036.                         with Target is oVid_o3; Mode is Clear; end,
  1037.                         cRunCommand
  1038.                         with Target is oVid_o3; Mode is Clear; end,
  1039.                         cEnableCommand
  1040.                         with Target is oVid_o3; Mode is Clear; end,
  1041.                         cSwitchURLCommand
  1042.                         with Target is oVid_o3; URL is "../Videos/s11.mpg"; end,
  1043.                         cShowCommand
  1044.                         with Target is oVid_o3; end,
  1045.                         cRunCommand
  1046.                         with Target is oVid_o3; Rewind is true; end,
  1047.                         cEnableCommand
  1048.                         with Target is oVid_o3; end
  1049.                     ];
  1050.                 end,
  1051.                 cIfCookieCommand
  1052.                 with CookieName is "CountLoop"; Value is "21"; 
  1053.                     Commands is [
  1054.                         cShowCommand
  1055.                         with Target is oVid_o3; Mode is Clear; end,
  1056.                         cRunCommand
  1057.                         with Target is oVid_o3; Mode is Clear; end,
  1058.                         cEnableCommand
  1059.                         with Target is oVid_o3; Mode is Clear; end,
  1060.                         cSwitchURLCommand
  1061.                         with Target is oVid_o3; URL is "../Videos/s12.mpg"; end,
  1062.                         cShowCommand
  1063.                         with Target is oVid_o3; end,
  1064.                         cRunCommand
  1065.                         with Target is oVid_o3; Rewind is true; end,
  1066.                         cEnableCommand
  1067.                         with Target is oVid_o3; end
  1068.                     ];
  1069.                 end,
  1070.                 cIfCookieCommand
  1071.                 with CookieName is "CountLoop"; Value is "22"; 
  1072.                     Commands is [
  1073.                         cShowCommand
  1074.                         with Target is oVid_o3; Mode is Clear; end,
  1075.                         cRunCommand
  1076.                         with Target is oVid_o3; Mode is Clear; end,
  1077.                         cEnableCommand
  1078.                         with Target is oVid_o3; Mode is Clear; end,
  1079.                         cSwitchURLCommand
  1080.                         with Target is oVid_o3; URL is "../Videos/R1.MPG"; end,
  1081.                         cShowCommand
  1082.                         with Target is oVid_o3; end,
  1083.                         cRunCommand
  1084.                         with Target is oVid_o3; Rewind is true; end,
  1085.                         cEnableCommand
  1086.                         with Target is oVid_o3; end
  1087.                     ];
  1088.                 end,
  1089.                 cIfCookieCommand
  1090.                 with CookieName is "CountLoop"; Value is "23"; 
  1091.                     Commands is [
  1092.                         cShowCommand
  1093.                         with Target is oVid_o3; Mode is Clear; end,
  1094.                         cRunCommand
  1095.                         with Target is oVid_o3; Mode is Clear; end,
  1096.                         cEnableCommand
  1097.                         with Target is oVid_o3; Mode is Clear; end,
  1098.                         cSwitchURLCommand
  1099.                         with Target is oVid_o3; URL is "../Videos/R2.MPG"; end,
  1100.                         cShowCommand
  1101.                         with Target is oVid_o3; end,
  1102.                         cRunCommand
  1103.                         with Target is oVid_o3; Rewind is true; end,
  1104.                         cEnableCommand
  1105.                         with Target is oVid_o3; end
  1106.                     ];
  1107.                 end,
  1108.                 cIfCookieCommand
  1109.                 with CookieName is "CountLoop"; Value is "24"; 
  1110.                     Commands is [
  1111.                         cShowCommand
  1112.                         with Target is oVid_o3; Mode is Clear; end,
  1113.                         cRunCommand
  1114.                         with Target is oVid_o3; Mode is Clear; end,
  1115.                         cEnableCommand
  1116.                         with Target is oVid_o3; Mode is Clear; end,
  1117.                         cSwitchURLCommand
  1118.                         with Target is oVid_o3; URL is "../Videos/R3.MPG"; end,
  1119.                         cShowCommand
  1120.                         with Target is oVid_o3; end,
  1121.                         cRunCommand
  1122.                         with Target is oVid_o3; Rewind is true; end,
  1123.                         cEnableCommand
  1124.                         with Target is oVid_o3; end
  1125.                     ];
  1126.                 end,
  1127.                 cIfCookieCommand
  1128.                 with CookieName is "CountLoop"; Value is "25"; 
  1129.                     Commands is [
  1130.                         cShowCommand
  1131.                         with Target is oVid_o3; Mode is Clear; end,
  1132.                         cRunCommand
  1133.                         with Target is oVid_o3; Mode is Clear; end,
  1134.                         cEnableCommand
  1135.                         with Target is oVid_o3; Mode is Clear; end,
  1136.                         cSwitchURLCommand
  1137.                         with Target is oVid_o3; URL is "../Videos/R4.MPG"; end,
  1138.                         cShowCommand
  1139.                         with Target is oVid_o3; end,
  1140.                         cRunCommand
  1141.                         with Target is oVid_o3; Rewind is true; end,
  1142.                         cEnableCommand
  1143.                         with Target is oVid_o3; end
  1144.                     ];
  1145.                 end,
  1146.                 cIfCookieCommand
  1147.                 with CookieName is "CountLoop"; Value is "26"; 
  1148.                     Commands is [
  1149.                         cShowCommand
  1150.                         with Target is oVid_o3; Mode is Clear; end,
  1151.                         cRunCommand
  1152.                         with Target is oVid_o3; Mode is Clear; end,
  1153.                         cEnableCommand
  1154.                         with Target is oVid_o3; Mode is Clear; end,
  1155.                         cSwitchURLCommand
  1156.                         with Target is oVid_o3; URL is "../Videos/v1.mpg"; end,
  1157.                         cShowCommand
  1158.                         with Target is oVid_o3; end,
  1159.                         cRunCommand
  1160.                         with Target is oVid_o3; Rewind is true; end,
  1161.                         cEnableCommand
  1162.                         with Target is oVid_o3; end
  1163.                     ];
  1164.                 end,
  1165.                 cIfCookieCommand
  1166.                 with Flags is $00000004; CookieName is "CountLoop"; Value is "27"; 
  1167.                     Commands is [
  1168.                         cShowCommand
  1169.                         with Target is oVid_o3; Mode is Clear; end,
  1170.                         cRunCommand
  1171.                         with Target is oVid_o3; Mode is Clear; end,
  1172.                         cEnableCommand
  1173.                         with Target is oVid_o3; Mode is Clear; end,
  1174.                         cEnableCommand
  1175.                         with Target is oVid_o3; Mode is Clear; end,
  1176.                         cDragCommand
  1177.                         with Flags is $00000004; Target is oVid_o3; Mode is DragTo; Y is 76; end,
  1178.                         cGrowCommand
  1179.                         with Flags is $00000004; Target is oVid_o3; Mode is GrowTo; X is 800; Y is 450; end,
  1180.                         cSwitchURLCommand
  1181.                         with Target is oVid_o3; URL is "../Videos/V2.MPG"; end,
  1182.                         cShowCommand
  1183.                         with Target is oVid_o3; end,
  1184.                         cRunCommand
  1185.                         with Target is oVid_o3; Rewind is true; end,
  1186.                         cEnableCommand
  1187.                         with Target is oVid_o3; end,
  1188.                         cDoCookieCommand
  1189.                         with CookieName is "CountLoop"; Value is "0"; end
  1190.                     ];
  1191.                 end
  1192.             ];
  1193.         end,
  1194.         cMouseUpEvent
  1195.         with Flag is true; 
  1196.             Commands is [
  1197.                 cEnableCommand
  1198.                 with Target is oVid_o3; Mode is Clear; end,
  1199.                 cShowCommand
  1200.                 with Target is oVid_o3; Mode is Clear; end,
  1201.                 cRunCommand
  1202.                 with Target is oVid_o3; Mode is Clear; end,
  1203.                 cTokenCommand
  1204.                 with TokenName is "run"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  1205.                 cBrowseCommand
  1206.                 with URL is "sommaire.k"; end
  1207.             ];
  1208.         end
  1209.     ];
  1210. end;